home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 March / EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso / earcd / comm2 / amislt14.lha / AmiSlate / ExampleRexx / onoff.rexx < prev    next >
OS/2 REXX Batch file  |  1996-01-27  |  296b  |  19 lines

  1. /* A program demonstrating how to use TransmitGraphics to 
  2.    toggle transmission of graphics */
  3. parse arg CommandPort ActiveString
  4.  
  5. address (CommandPort)
  6. options results
  7.  
  8. do i = 0 to 50
  9.     transmitgraphics ON
  10.     point (i*2) 50
  11.     transmitgraphics OFF
  12.      point (i*2)+1 50
  13.     end
  14.  
  15. transmitgraphics ON
  16.  
  17.     
  18.     
  19.